home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-02-09 | 737 b | 18 lines | [TEXT/PJMM] |
- unit DialogUtilities;
- interface
-
- function GetIHandle (d: DialogPtr; item: Integer): Handle;
- procedure SetStrItem (d: DialogPtr; item: Integer; s: Str255);
- procedure ReadStrItem (d: DialogPtr; item: Integer; s: Str255);
- procedure SetDlgCtl (d: DialogPtr; item: Integer; flag: Boolean);
- function GetDlgCtl (d: DialogPtr; item: Integer): Boolean;
- function TestDlgCtl (d: DialogPtr; item: Integer): Boolean;
- procedure XAbleDlgCtl (d: DialogPtr; item: Integer; flag: Boolean);
- procedure SetupUserItem (d: DialogPtr; item: Integer; itemProc: ProcPtr);
-
- implementation
-
- { The functions listed above are defined in "DialogUtilities.Lib", which is in turn }
- { compiled from "DialogUtilities.c", in the "C Interfaces" folder. }
-
- end.